home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / andere sprachen / perl5 / perl5.002 / t / re_tests < prev    next >
Encoding:
Text File  |  1995-01-20  |  73 b   |  4 lines

  1. a.+?c    abcabc    y    $&    abc
  2. (a+|b)*    ab    y    $&-$1    ab-b
  3. (a+|b){0,}    ab    y    $&-$1    ab-b
  4.